vb.net -Add Controls To Form Using Codes [Not Using Tool Box]
vb.net -Add Controls To Form Using Codes [Not Using Tool Box]
Rate vb.net -Add Controls To Form Using Codes [Not Using Tool Box]
(1(1 Vote))
Dim Pnt As Point = New Point(10, 10)
LstBox.Location = Pnt
Dim MSize As Size = New Size(Me.Width - 30, Me.Height - 50)
LstBox.Size = MSize
Me.Controls.Add(LstBox)
LstBox.Visible = True
For i As Integer = 1 To 100
LstBox.Items.Add("Item Index :- " & i)
Next
vb.net -Add Controls To Form Using Codes [Not Using Tool Box] Comments
No comments yet — be the first to post one!
Post a Comment